home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / business / vmsys30.zip / VRESTORE.BAT < prev   
DOS Batch File  |  1994-07-15  |  747b  |  33 lines

  1. echo off
  2. if %1.==. goto usage
  3. cls
  4. echo.
  5. echo Restoring Vehicle Management Database files from backup
  6. echo.
  7. echo Warning.  All current data will be overwritten with the data that
  8. echo has been backed up!!
  9. echo.
  10. echo Place backup disk into Drive %1
  11. echo. 
  12. echo Press CTRL-C to break now or
  13. pause
  14. echo.
  15. echo Now copying backup database to hard disk
  16. copy %1:\vdata3.zip
  17. echo.
  18. echo Now Unarchiving VMSYS.ZIP ... 
  19. echo.
  20. pkunzip -o vdata3.zip
  21. echo DONE
  22. goto end
  23. :usage
  24. echo.
  25. echo Usage:  VRESTORE A  - restores from drive A
  26. echo     or  VRESTORE B  - restores from drive B
  27. echo.
  28. echo Do NOT use the colon character when specifying the drive letter.  
  29. echo.
  30. echo I.e. use 'vrestore A'  instead of  'Vrestore A:'
  31. echo.
  32. :end
  33.